home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software Vault: The Gold Collection
/
Software Vault - The Gold Collection (American Databankers) (1993).ISO
/
cdr30
/
et4utl.zip
/
INSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1993-04-03
|
3KB
|
51 lines
echo off
if x%1==x goto noparam
cls
echo ╔═══════════════════════════════════════════╗
echo ║ ║
echo ║ ET4000 Utilities ║
echo ║ ║
echo ║ Version 1.00 ║
echo ║ ║
echo ║ 06/07/91 ║
echo ║ ║
echo ╚═══════════════════════════════════════════╝
echo ╔══════════════════════════════════════════════════════════════════╗
echo ║ The INSTALL program will copy the VGA Utilities if you continue. ║
echo ║ ║
echo ║ Press "Ctrl" and C at the same time to halt the INSTALL program. ║
echo ║ ║
echo ║ Press any key to continue the INSTALL program. ║
echo ╚══════════════════════════════════════════════════════════════════╝
pause >nul
md %1
cls
copy *.* %1\*.* /v
goto ok
:noparam
cls
echo ╔═════════════════════════════════════════════════════════════╗
echo ║ ║
echo ║ The INSTALL program requires a drive/directory parameter. ║
echo ║ ║
echo ║ EXAMPLES: ║
echo ║ ║
echo ║ INSTALL B: - to install utilities on drive B ║
echo ║ ║
echo ║ INSTALL C: - to install utilities on drive C ║
echo ║ ║
echo ║ INSTALL C:\UTIL - to install utilities in directory ║
echo ║ "UTIL" on drive C ║
echo ║ ║
echo ╚═════════════════════════════════════════════════════════════╝
goto end
:ok
cls
echo ╔═════════════════════════════════════════════════════════════════╗
echo ║ ║
echo ║ The INSTALL program has copied the VGA utilities to the ║
echo ║ drive/directory that you specified. ║
echo ║ ║
echo ╚═════════════════════════════════════════════════════════════════╝
:end